All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.InputServerDelegate

public interface InputServerDelegate
This interface wraps the Objective-C category defining delegate methods of the NSInputServer class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o activeConversationWillChange(Object, int, int)
A wrapper for the - activeConversationWillChange:oldConversation:newConversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o canBeDisabled()
A wrapper for the - canBeDisabled Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o cancelInputInConversation(Object, int)
A wrapper for the - cancelInput:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o doCommandBySelectorInConversation(Selector, Object, int)
A wrapper for the - doCommandBySelector:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o insertTextInConversation(String, Object, int)
A wrapper for the - insertText:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o markedTextSelectionChangedInConversation(Range, Object, int)
A wrapper for the - markedTextSelectionChanged:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o markedTextWillBeAbandonedInConversation(Object, int)
A wrapper for the - markedTextWillBeAbandoned:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o senderDidBecomeActive(Object)
A wrapper for the - senderDidBecomeActive: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o senderDidResignActive(Object)
A wrapper for the - senderDidResignActive: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o setActivated(boolean, Object)
A wrapper for the - setActivated:sender: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o terminate(Object)
A wrapper for the - terminate: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).
 o wantsToInterpretAllKeystrokes()
A wrapper for the - wantsToInterpretAllKeystrokes Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

Methods

 o setActivated
 public abstract void setActivated(boolean flag,
                                   Object sender)
A wrapper for the - setActivated:sender: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o insertTextInConversation
 public abstract void insertTextInConversation(String aString,
                                               Object sender,
                                               int conv)
A wrapper for the - insertText:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o doCommandBySelectorInConversation
 public abstract void doCommandBySelectorInConversation(Selector aSelector,
                                                        Object sender,
                                                        int conv)
A wrapper for the - doCommandBySelector:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o markedTextWillBeAbandonedInConversation
 public abstract void markedTextWillBeAbandonedInConversation(Object sender,
                                                              int conv)
A wrapper for the - markedTextWillBeAbandoned:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o markedTextSelectionChangedInConversation
 public abstract void markedTextSelectionChangedInConversation(Range newSel,
                                                               Object sender,
                                                               int conv)
A wrapper for the - markedTextSelectionChanged:sender:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o cancelInputInConversation
 public abstract void cancelInputInConversation(Object sender,
                                                int conv)
A wrapper for the - cancelInput:conversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o terminate
 public abstract void terminate(Object sender)
A wrapper for the - terminate: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o canBeDisabled
 public abstract boolean canBeDisabled()
A wrapper for the - canBeDisabled Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o wantsToInterpretAllKeystrokes
 public abstract boolean wantsToInterpretAllKeystrokes()
A wrapper for the - wantsToInterpretAllKeystrokes Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o senderDidBecomeActive
 public abstract void senderDidBecomeActive(Object sender)
A wrapper for the - senderDidBecomeActive: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o senderDidResignActive
 public abstract void senderDidResignActive(Object sender)
A wrapper for the - senderDidResignActive: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).

 o activeConversationWillChange
 public abstract void activeConversationWillChange(Object sender,
                                                   int oldConversation,
                                                   int newConversation)
A wrapper for the - activeConversationWillChange:oldConversation:newConversation: Objective-C instance method implemented by delegates of the InputServer class (known as the NSInputServer Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index